home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
PC World Interactive 7
/
PC World Interactive 7.iso
/
program
/
cprog.EXE
/
CC_1.ZIP
/
FPUTS.C
< prev
next >
Wrap
Text File
|
1988-02-01
|
384b
|
14 lines
/*
** put a string to a stream file
*/
extern int fputc();
fputs(s, stream) char *s; int *stream; {
char ch, *str;
str=s;
while(ch=*s++) {
if(fputc(ch, stream) == -1) return -1;
}
return str;
}